iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 27
1
Software Development

C#可以做出甚麼?系列 第 27

倒數第4天

  • 分享至 

  • xImage
  •  

最近有銀行在更新
似乎有災情
來看看C#是否可以寫出
定義銀行帳戶類型
您可以從建立能定義該行為之類別的基礎項目來開始。 使用 file: new 命令建立新的檔案。 將它命名為 BankAccount.cs。 將下列程式碼新增至 BankAccount.cs 檔案:


namespace classes
{
    public class BankAccount
    {
        public string Number { get; }
        public string Owner { get; set; }
        public decimal Balance { get; }

        public void MakeDeposit(decimal amount, DateTime date, string note)
        {
        }

        public void MakeWithdrawal(decimal amount, DateTime date, string note)
        {
        }
    }
}

https://docs.microsoft.com/zh-tw/dotnet/csharp/tutorials/intro-to-csharp/introduction-to-classes

DEAR ALL 我們明天見/images/emoticon/emoticon06.gif


上一篇
倒數第5天
下一篇
倒數第3天
系列文
C#可以做出甚麼?30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言